home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / axis_camera.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  67 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10502);
  14.  script_version ("$Revision: 1.8 $");
  15.  
  16.  name["english"] = "Axis Camera Default Password";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host seems to be an Axis Network Camera, using
  21. the default login/password 'root/pass'.
  22.  
  23. An attacker may log into this host to change
  24. its settings, such as its arp address, and create
  25. some disorder on the network.
  26.  
  27. Solution : change its password
  28. Risk factor : Low";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Detects whether an Axis Network Camera has its default pass set";
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison");
  38.  family["english"] = "Misc.";
  39.  family["francais"] = "Divers";
  40.  script_family(english:family["english"], francais:family["francais"]);
  41.  script_require_ports(23);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49. port = 23;
  50. if (get_port_state(port))
  51. {
  52.  soc = open_sock_tcp(port);
  53.  
  54.  if (soc)
  55.  {
  56.    banner = telnet_init(soc);
  57.    req = string("root\r\n");
  58.    send(socket:soc, data:req);
  59.    recv(socket:soc, length:1000);
  60.    req = string("pass\r\n");
  61.    send(socket:soc, data:req);
  62.    r = recv(socket:soc, length:1000);
  63.    if("Root" >< r)security_warning(port);
  64.    close(soc);
  65.  }
  66. }
  67.